-
1 binary tree searching
Математика: поиск по бинарному дереву -
2 tree
1) древовидная схема, дерево; древовидный дешифратор2) т.граф. дерево•- and-or tree
- AVL-tree
- balanced tree
- binary tree
- Boolean tree
- clock tree
- cluster tree
- collapsed tree
- decision tree
- depth-balanced tree
- derivation tree
- directed tree
- directory tree
- edge-valued binary decision tree
- exclusive tree
- expanded tree
- fan-out tree
- fault tree
- folded tree
- game tree
- height-balanced tree
- hierarchical tree
- inclusive tree
- incremented tree
- inverted tree
- Lupanov's tree
- minimum length tree
- N-bit parity tree
- overlay tree
- parity tree
- pattern tree
- position tree
- production tree
- radix tree
- rooted tree
- scope tree
- searching tree
- search tree
- selection tree
- shalloow tree
- sink tree
- skewed tree
- spanning tree
- specification tree
- syntactic tree
- syntax tree
- undirected tree
- upside down tree
- VLSI search tree
- word-level decision tree
- XOR treeEnglish-Russian dictionary of computer science and programming > tree
-
3 tree
1) дерево2) бревно3) стойка, подпорка7) мн. ч. дендритные образования (напр. на пластинах аккумулятора)•-
balanced tree
-
binary tree
-
Boolean tree
-
branching tree
-
Christmas tree
-
code tree
-
decision tree
-
derivation tree
-
document tree
-
dormant tree
-
dual completion Christmas tree
-
flange-type Christmas tree
-
game tree
-
garment tree
-
graph tree
-
head tree
-
informational tree
-
loose-valve Christmas tree
-
marine Christmas tree
-
multiple completion Christmas tree
-
oriented tree
-
overlay tree
-
plane tree
-
platform Christmas tree
-
production tree
-
random tree
-
rooted tree
-
root tree
-
searching tree
-
search tree
-
selection tree
-
sink tree
-
solid-block valve Christmas tree
-
spanning tree
-
subsea test tree
-
thread-type Christmas tree
-
underwater Christmas tree
См. также в других словарях:
Binary search tree — In computer science, a binary search tree (BST) is a binary tree data structurewhich has the following properties: *each node (item in the tree) has a value; *a total order (linear order) is defined on these values; *the left subtree of a node… … Wikipedia
Tree (data structure) — A simple unordered tree; in this diagram, the node labeled 7 has two children, labeled 2 and 6, and one parent, labeled 2. The root node, at the top, has no parent. In computer science, a tree is a widely used data structure that emulates a… … Wikipedia
Binary search algorithm — for performing binary searches on Java arrays and Lists, respectively. They must be arrays of primitives, or the arrays or Lists must be of a type that implements the Comparable interface, or you must specify a custom Comparator object. Microsoft … Wikipedia
Interval tree — In computer science, an interval tree, also called a segment tree or segtree, is an ordered tree data structure to hold intervals. Specifically, it allows one to efficiently find all intervals that overlap with any given interval or point. It is… … Wikipedia
Decision tree model — In computational complexity and communication complexity theories the decision tree model is the model of computation or communication in which an algorithm or communication process is considered to be basically a decision tree, i.e., a sequence… … Wikipedia
B-tree — In computer science, a B tree is a tree data structure that keeps data sorted and allows searches, insertions, and deletions in logarithmic amortized time. It is most commonly used in databases and filesystems. In B trees, internal (non leaf)… … Wikipedia
Splay tree — A splay tree is a self balancing binary search tree with the additional property that recently accessed elements are quick to access again. It performs basic operations such as insertion, look up and removal in O(log(n)) amortized time. For many… … Wikipedia
Scapegoat tree — In computer science, a scapegoat tree is a self balancing binary search tree, invented by Igal Galperin and Ronald L. Rivest. It provides worst case O(log n ) lookup time, and O(log n ) amortized insertion and deletion time.Unlike other self… … Wikipedia
Self-balancing binary search tree — In computer science, a self balancing binary search tree or height balanced binary search tree is a binary search tree that attempts to keep its height , or the number of levels of nodes beneath the root, as small as possible at all times,… … Wikipedia
AA tree — In computer science, AA trees (Arne Andersson trees) are a form of balanced trees used for storing and retrieving ordereddata efficiently.Unlike red black trees, red nodes on an AA tree can only be added as a right subchild. In other words, no… … Wikipedia
B+ tree — In computer science, a B+ tree is a type of tree which represents sorted data in a way that allows for efficient insertion, retrieval and removal of records, each of which is identified by a key . It is a dynamic, multilevel index, with maximum… … Wikipedia